home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks95 / MacsBugTV.sit / MacsBug TV / dcmd Includes / Put.h < prev    next >
Text File  |  1995-06-24  |  916b  |  33 lines

  1. /*    put.h
  2.     This is a set of formatting routines for use by dcmds.
  3.     Copyright © 1988 Apple Computer, Inc.  All rights reserved.
  4.  
  5.     Modification history:
  6.          5Oct sad        written from file.c
  7.  */
  8.  
  9. #ifndef __put__
  10. #define __put__
  11.  
  12. void PutInit();
  13. void PutLine();
  14. void PutChar(char c);
  15. void PutSpace();
  16. void PutSpacesTo(int pos);
  17. void PutBytesTruncTo(const char* s, int len, int endpos);
  18. void PutBytesTo(const char* s, int len, int endpos);
  19. void PutCStrTruncTo(const char* s, int endpos);
  20. void PutCStrTo(const char* s, int endpos);
  21. void PutCStr(const char* s);
  22. void PutPStrTruncTo(const char* s, int endpos);
  23. void PutPStrTo(const char* s, int endpos);
  24. void PutPStr(const char* s);
  25. void PutUHexZTo(unsigned long i, int nz, int pos);
  26. void PutUHexZ(unsigned long i, int nz);
  27. void PutUHexWord(unsigned short h);
  28. void PutUDecTo(unsigned long i, int endpos);
  29. void PutUDec(unsigned long i);
  30. void PutOSType(unsigned long typ);
  31.  
  32. #endif
  33.